home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 6
/
FM Towns Free Software Collection 6.iso
/
t_os
/
igo
/
src
/
my_commn.c
< prev
Wrap
C/C++ Source or Header
|
1993-07-08
|
217b
|
16 lines
#define DEBUG 0
/*
私用汎用関数
1993/02/28 久保田俊也
*/
#include <stdio.h>
#include <time.h>
void wait( int tm )
{
tm += clock();
while( tm >= clock() );
}